home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / MEDICAL / 1211.ZIP / PDSL.BAT < prev    next >
DOS Batch File  |  1988-04-12  |  3KB  |  71 lines

  1. ECHO OFF
  2. CLS
  3. ECHO                 THE PUBLIC DOMAIN SOFTWARE LIBRARY
  4. ECHO ***********************************************************************
  5. ECHO Winscombe House, Beacon Rd, Crowborough, Sussex TN6 IUL tel 08926 63298
  6. ECHO -
  7. ECHO This disk contains public domain and/or user supported software.
  8. ECHO This compilation of software is just one of 2000 plus disks available
  9. ECHO from the Public Domain Software Library. No charge or fee may be made
  10. ECHO for this disk, but you may give away copies to your friends providing
  11. ECHO you give them the whole thing including this file .
  12. ECHO Unlike commercial software, no printed documentation is supplied except
  13. ECHO in some cases from the authors of the programs.
  14. ECHO Most disks contain document files describing how to use the programs.
  15. ECHO These document files can usually be identified by the filename or
  16. ECHO filename extension type used. DOC, FRM, PRN, TXT, WS, MAN are the most
  17. ECHO common, files called READ.ME etc are also document files.
  18. ECHO You can view these files using the DOS 'TYPE' command. So to view a file
  19. ECHO called 'READ.ME' you would enter at the keyboard:-
  20. ECHO -
  21. ECHO "TYPE READ.ME"
  22. ECHO -
  23. PAUSE
  24. cls
  25. ECHO ARCHIVE FILES
  26. ECHO Some disks contain files with a ARC extension to the filename. These
  27. ECHO are special PACKED files, usually containing a number of smaller files.
  28. ECHO They are used to save disk space. Before you can use 'Archived' programs
  29. ECHO they need unpacking; for this you will need ARC.EXE, PKXARC.COM, ARCE.COM
  30. ECHO or ARCX.COM. The procedure is:- Place a blank formatted disk in drive B ,
  31. ECHO put the disk with .COM or .EXE file and the archive file in drive A and 
  32. ECHO type as follows "B:<cr>" to log into drive B, then:-"A:ARC E A:XXXXXX<cr>"
  33. ECHO (for ARC.EXE) or "A:ARCX A:XXXXXX<cr>" (substitute ARCE or PKXARC where it
  34. ECHO says ARCX if you have a different program), where XXXXXX is the name of 
  35. ECHO the file to be unpacked. The files will be extracted and put on the disk 
  36. ECHO in B:
  37. ECHO -
  38. ECHO USER SUPPORTED SOFTWARE.
  39. ECHO We urge you to support the authors of user supported software. This is
  40. ECHO not FREE software, but rather a 'try before you buy' system. It is
  41. ECHO expected that if you find a program of use, you will register with the
  42. ECHO author and send him a contribution. Your support will help to allow
  43. ECHO further and better software to be distributed in this way.
  44. ECHO Please also check the documentation of all programs for any special
  45. ECHO conditions of use given by the author.
  46. ECHO -
  47. PAUSE
  48. cls
  49. ECHO NOTE
  50. ECHO This file is not specific to this particular disk - it exists on all
  51. ECHO PDSL volumes, and thus it may not display all documentation files on
  52. ECHO this disk if non-standard names have been used. Please check the
  53. ECHO directory of the disk for any other document files which may have been
  54. ECHO missed by this batch file.
  55. ECHO -
  56. PAUSE
  57. IF NOT EXIST T.COM GOTO :END
  58. CLS
  59. ECHO PRESS ANY KEY TO START VIEWING TEXT/DOCUMENT FILES ON THIS DISK
  60. ECHO OR HIT CONTROL C TO EXIT. HIT ESC TO JUMP TO THE NEXT FILE WHEN VIEWING.
  61. PAUSE
  62. T -*.*
  63. T *.DOC
  64. T *.TXT
  65. T *.ME
  66. T *.MAN
  67. T *.FRM
  68. T *.WS
  69. :END
  70. EXIT
  71.